home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / FileExists.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  113 b   |  6 lines

  1. If FileExists("D:\") Then
  2.     MsgBox(4096, "", "D: exists.")
  3. Else
  4.     MsgBox(4096,"", "D: does not exist.")
  5. EndIf
  6.